how to find html input box value using jQuery
how to find html input box value using jQuery
1060
18-Jun-2018
Prakash nidhi Verma
18-Jun-2018HTML input box value using jQuery:
jQuery val() Method :
HTML <input> with an id attribute id='MindstickId', you can more simply just use:
$(function () {$('#MindstickId').val("Software");
});
Example: Set the value of the <input> field..
$("button").click(function(){ $("input:text").val("Mind stick"); });
Syntax:
I hope, It will be helpful for you.
Happy Coding :)